home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 248_01 / dsfx.h < prev    next >
Text File  |  1989-08-16  |  2KB  |  136 lines

  1. /*    DOPT:    Temporary Suffix List for MicroSPELL 1.0
  2.         Spell Checker and Corrector
  3.  
  4.         (C)opyright May 1987 by Daniel Lawrence
  5.         All Rights Reserved
  6. */
  7.  
  8. char *sfx[] = {        /* legal common word suffixes */
  9.         "'clock",
  10.     "ating",
  11.     "ation",
  12.     "cally",
  13.     "ement",
  14.     "ility",
  15.     "ional",
  16.     "table",
  17.     "tions",
  18.     "able",
  19.     "ally",
  20.     "ance",
  21.     "ated",
  22.     "ates",
  23.     "ator",
  24.     "ding",
  25.     "ence",
  26.     "ents",
  27.     "ings",
  28.     "ions",
  29.     "ious",
  30.     "lity",
  31.     "ment",
  32.     "ring",
  33.     "sive",
  34.     "tain",
  35.     "ting",
  36.     "tion",
  37.     "tive",
  38.     "ture",
  39.         "'er",
  40.         "'ll",
  41.         "'re",
  42.         "'ve",
  43.     "ace",
  44.     "ack",
  45.     "age",
  46.     "ain",
  47.     "and",
  48.     "ant",
  49.     "ard",
  50.     "ary",
  51.     "ate",
  52.     "ble",
  53.     "ect",
  54.     "ent",
  55.     "ers",
  56.     "ery",
  57.     "ess",
  58.     "est",
  59.     "ful",
  60.     "ght",
  61.     "ial",
  62.     "ice",
  63.     "ide",
  64.     "ine",
  65.     "ing",
  66.     "ion",
  67.     "ish",
  68.     "ist",
  69.     "ite",
  70.     "ity",
  71.     "ive",
  72.     "ize",
  73.     "lly",
  74.         "n't",
  75.     "nce",
  76.     "nds",
  77.     "nts",
  78.     "one",
  79.     "ons",
  80.     "ore",
  81.     "ous",
  82.     "red",
  83.     "ted",
  84.     "ter",
  85.     "tic",
  86.     "tor",
  87.     "ure",
  88.         "'d",
  89.         "'m",
  90.         "'s",
  91.     "al",
  92.     "ce",
  93.     "ed",
  94.     "er",
  95.     "es",
  96.     "le",
  97.     "ly",
  98.     "ns",
  99.     "nt",
  100.     "on",
  101.     "re",
  102.     "rs",
  103.     "ry",
  104.     "te",
  105.     "ts",
  106.         "'",
  107.     "a",
  108.     "b",
  109.     "c",
  110.     "d",
  111.     "e",
  112.     "f",
  113.     "g",
  114.     "h",
  115.     "i",
  116.     "j",
  117.     "k",
  118.     "l",
  119.     "m",
  120.     "n",
  121.     "o",
  122.     "p",
  123.     "q",
  124.     "r",
  125.     "s",
  126.     "t",
  127.     "u",
  128.     "v",
  129.     "w",
  130.     "x",
  131.     "y",
  132.     "z"
  133. };
  134.  
  135. #define    NSUFFIX    sizeof(sfx) / sizeof(char *)
  136.